home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Kompuutteri K-CD 2002 #1
/
K-CD_2002-01.iso
/
Delphi
/
INSTALL
/
program files
/
Borland
/
Delphi6
/
Demos
/
CustomDraw
/
customdraw.dpr
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
Macintosh to JP
NeXTSTEP
RISC OS/Acorn
Shift JIS
UTF-8
Wrap
Text File
|
2001-05-22
|
243 b
|
14 lines
program CustomDraw;
uses
Forms,
CustomDrawTreeView in 'CustomDrawTreeView.pas' {CustomDrawForm};
{$R *.RES}
begin
Application.Initialize;
Application.CreateForm(TCustomDrawForm, CustomDrawForm);
Application.Run;
end.